HTMLify
style.css
Views: 16 | Author: huxn-webdev
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 | * { margin: 0; padding: 0; box-sizing: border-box; } body { background: #00008bcb; } .wrapper { display: flex; justify-content: center; align-items: center; min-height: 100vh; } .wrapper .loader { display: flex; justify-content: space-evenly; padding: 0 20px; } .loader .loading { background: #fff; width: 30px; height: 30px; border-radius: 50px; margin: 0 10px; animation: load 0.8s ease infinite; } .loader .loading.one { animation-delay: 0.3s; } .loader .loading.two { animation-delay: 0.4s; } .loader .loading.three { animation-delay: 0.5s; } @keyframes load { 0% { width: 30px; height: 30px; } 50% { width: 20px; height: 20px; } } |